home *** CD-ROM | disk | FTP | other *** search
- #ifndef _SIDEFS_H
- #define _SIDEFS_H
-
- #ifndef _SITYPES_H
- # include <sitypes.h>
- #endif
-
- typedef struct /* フレームデータ構造体 */
- {
- SHORT x1, y1, x2, y2;
- } FRAME_T;
-
- typedef struct /* 矩形データ構造体 */
- {
- SHORT x0, y0, xs, ys;
- } RECTANGLE_T;
-
- typedef struct /* ポイントデータ構造体 */
- {
- SHORT x, y;
- } POINT_T;
-
- typedef struct _clip_t /* クリップデータ構造体 */
- {
- struct _clip_t *next;
- FRAME_T fr;
- } CLIP_T;
-
- typedef unsigned int COLOR_T;
-
- typedef struct _sinamlst_t /* リスト構造体 */
- {
- struct _sinamlst_t *next;
- char *p;
- } SINAMLST_T;
-
-
- #endif
-